home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7013.txt < prev    next >
Text File  |  1994-10-06  |  156b  |  15 lines

  1. Returns the character of the ASCII code of v
  2. e.g.
  3. Chr(97) = a
  4. Chr(65) = A
  5.  
  6. Chr(v);
  7.  
  8. Returns the ASCII code of v
  9. e.g. 
  10. Ord('a') = 97
  11. Ord('A') = 65
  12.  
  13. Ord(v);
  14.  
  15.